This forum is closed to new posts and
responses. The content has been migrated to the Digital Solutions Community. Please join us there for new content as well as this content. For customer support, please visit the official HCL customer support channels below:
~James Asaremaroni 23.Jan.04 07:38 PM a Web browser Applications Development6.0.2 CF1All Platforms
I am try code @Mailsend on the web. I have a agent with the following lotus script. it does not give any errors but at the same time i do not receive any emails.Is there a standard script for the web. I tried calling from the Web QuerySave event but it still does not work.
Sub Initialize
Dim db As NotesDatabase
Dim doc As NotesDocument
Set doc = session.DocumentContext
Dim recipients( 1 To 2 ) As String
recipients( 1 ) = "pssrinivasan@west.com"
recipients( 2 ) = "rmpetersen@west.com"
Call doc.Send( True, recipients )
End Sub